RemoveVoucherCommandHandler.execute   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 9
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 9
rs 10
c 0
b 0
f 0
cc 2
1
import { Inject } from '@nestjs/common';
2
import { CommandHandler } from '@nestjs/cqrs';
3
import { VoucherNotFoundException } from 'src/Domain/School/Exception/VoucherNotFoundException';
4
import { IVoucherRepository } from 'src/Domain/School/Repository/IVoucherRepository';
5
import { RemoveVoucherCommand } from './RemoveVoucherCommand';
6
7
@CommandHandler(RemoveVoucherCommand)
8
export class RemoveVoucherCommandHandler {
9
  constructor(
10
    @Inject('IVoucherRepository')
11
    private readonly voucherRepository: IVoucherRepository,
12
  ) {}
13
14
  public async execute({ id }: RemoveVoucherCommand): Promise<void> {
15
    const voucher = await this.voucherRepository.findOneById(id);
16
17
    if (!voucher) {
18
      throw new VoucherNotFoundException();
19
    }
20
21
    await this.voucherRepository.remove(voucher);
22
  }
23
}
24